home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / PCBOOT.ARJ / WARMBOOT.C < prev    next >
Text File  |  1992-03-05  |  512b  |  21 lines

  1. /*****************************************************************************
  2.  warmboot.c
  3.  
  4.  Developed November 1991 by Larry Reeve
  5.  
  6.  A TurboC program to warm boot an IBM-PC.
  7. ******************************************************************************/
  8. #include <dos.h>
  9.  
  10. void main (void)
  11. {
  12.     unsigned int far * Indicator;
  13.     void (far * PtrReboot) (void);
  14.  
  15.     Indicator   = MK_FP(0x0000,0x0472);
  16.     PtrReboot   = MK_FP(0xFFFF,0x0000);
  17.  
  18.     *Indicator = 0x1234;
  19.     (*PtrReboot) ();
  20. }
  21.